home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-04-20 | 943 b | 30 lines | [TEXT/MMCC] |
- // ===========================================================================
- // <replace me PowerPlant>.h ©1994 Metrowerks Inc. All rights reserved.
- // ===========================================================================
- // <replace me PowerPlant>.cp (press Command-Tab to open the associated source file)
- //
-
- #pragma once
-
- #include <LApplication.h>
-
-
- class CPPStarterApp : public LApplication {
- public:
- CPPStarterApp(); // constructor registers all PPobs
- virtual ~CPPStarterApp(); // stub destructor
-
- // this overriding function performs application functions
-
- virtual Boolean ObeyCommand(CommandT inCommand, void* ioParam);
-
- // this overriding function returns the status of menu items
-
- virtual void FindCommandStatus(CommandT inCommand,
- Boolean &outEnabled, Boolean &outUsesMark,
- Char16 &outMark, Str255 outName);
- protected:
-
- virtual void StartUp(); // overriding startup functions
-
- };